home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 4 / Gold Medal Software - Volume 4 (Gold Medal) (1994).iso / os2 / fbar14.arj / INSTALL.CMD < prev    next >
OS/2 REXX Batch file  |  1994-02-10  |  1KB  |  36 lines

  1. /* REXX installation script for FileBar */
  2.  
  3. call RxFuncAdd 'SysCls', 'RexxUtil', 'SysCls'
  4. call RxFuncAdd 'SysCreateObject', 'RexxUtil', 'SysCreateObject'
  5.  
  6. currentDirectory = directory()
  7. programName = "\FILEBAR.EXE"
  8. programPath = insert( currentDirectory, programName )
  9. executable = insert( "EXENAME=", programPath )
  10.  
  11. SysCreateObject("WPProgram","FileBar - Version 1.4","<WP_DESKTOP>",,
  12.                 executable, "REPLACE" )
  13.  
  14. call SysCls
  15.  
  16. say ""
  17. say ""
  18. say "----------------------------------------------------------------"
  19. say " FileBar - OS/2 Application Launch Facility & Shell Replacement "
  20. say " Written By Eric A. Wolf - Copr. (C) 1994 - All Rights Reserved "
  21. say "----------------------------------------------------------------"
  22. say ""
  23. say " FileBar object successfully created on desktop..."
  24. say ""
  25. say " Start FileBar by double-clicking on the  program object.  And, "
  26. say " for  future  OS/2 sessions, drag  this object to  your startup "
  27. say " folder (found in  OS/2 System Folder) so  that FileBar will be "
  28. say " executed every time you boot OS/2."
  29. say ""
  30. say "*****************************************************************"
  31. say "* This program is  distributed as Shareware!  You MUST register *"
  32. say "* this  product if you  continue  to  use it.   Please  see the *"
  33. say "* documentation for the complete details.                       *"
  34. say "*****************************************************************"
  35. say ""
  36.